Microsoft Cognitive Language Service - Analyze Conversations (preview:2022-10-01)

2025/07/24 • 4 deleted methods

ConversationAnalysis_AnalyzeConversation (removed)
Description Analyzes the input conversation utterance.
Reference Link ¶

⚼ Request

POST:  /:analyze-conversations
{
api-version: string ,
body:
{
kind: enum ,
}
,
}

⚐ Response (200)

{
kind: enum ,
}

⚐ Response (default)

{
$headers:
{
x-ms-error-code: string ,
}
,
$schema:
{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
,
}
AnalyzeConversation_SubmitJob (removed)
Description Submit a collection of conversations for analysis. Specify one or more unique tasks to be executed.
Reference Link ¶

⚼ Request

POST:  /analyze-conversations/jobs
{
api-version: string ,
body:
{
displayName: string ,
analysisInput:
{
conversations:
[
{
id: string ,
language: string ,
modality: enum ,
domain: enum ,
}
,
]
,
}
,
tasks:
[
{
kind: enum ,
}
,
]
,
}
,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
AnalyzeConversation_JobStatus (removed)
Description Get the status of an analysis job. A job can consist of one or more tasks. After all tasks succeed, the job transitions to the succeeded state and results are available for each task.
Reference Link ¶

⚼ Request

GET:  /analyze-conversations/jobs/{jobId}
{
api-version: string ,
jobId: string ,
showStats: boolean ,
}

⚐ Response (200)

{
$schema: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
AnalyzeConversation_CancelJob (removed)
Description Cancel a long-running job for text analysis of conversations.
Reference Link ¶

⚼ Request

POST:  /analyze-conversations/jobs/{jobId}:cancel
{
api-version: string ,
jobId: string ,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}